/* Reset & base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto Slab', Arial, sans-serif;
    color: #222;
    background: #fff;
}

.container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 48px;
}

.main-nav ul,
.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 6px 10px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a:focus {
    color: #fff;
    background: #328e82;
}

.main-nav a.active,
.main-nav a[aria-current="page"] {
    color: #fff;
    background: #328e82;
}

/* Burger menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #328e82;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 34, 34, 0.72);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1em;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: #328e82;
    color: #fff;
    padding: 24px 0;
}

.footer-container {
    text-align: center;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 4px 8px;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
}

.footer-nav a:hover,
.footer-nav a:focus {
    background: #fff;
    color: #328e82;
}

/* Home offer block */
.home-block-offer {
    background: #f6fafd;
    padding: 48px 0 32px 0;
}

.offer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 32px;
}

.offer-flex:last-child {
    margin-bottom: 0;
}

.offer-img img {
    width: 370px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(34, 34, 34, 0.10);
}

.offer-texts {
    flex: 1 1 0;
    min-width: 260px;
}

.offer-texts h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #328e82;
}

.offer-texts p {
    margin-bottom: 14px;
    font-size: 1.08rem;
    line-height: 1.6;
}

.offer-list {
    margin-bottom: 14px;
    padding-left: 18px;
}

.offer-list li {
    margin-bottom: 7px;
    font-size: 1.08rem;
}

.offer-flex-reverse {
    flex-direction: row-reverse;
}

@media (max-width: 1000px) {

    .offer-flex,
    .offer-flex.offer-flex-reverse {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .offer-img img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .offer-texts {
        min-width: 0;
    }
}

/* Responsive */
@media (max-width: 1000px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
        transition: right 0.3s;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 0 30px;
        z-index: 105;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 22px;
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 700px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
        transition: right 0.3s;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 0 30px;
        z-index: 105;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 22px;
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0 8px;
    }

    .footer-nav ul {
        gap: 8px;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Featured Destinations */
.home-block-destinations {
    background: #fff;
    padding: 48px 0 32px 0;
}

.destinations-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.destinations-text {
    text-align: center;
    padding: 25px;
    line-height: 1.6;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 4px 24px rgba(34, 34, 34, 0.10);
    background-size: cover;
    background-position: center;
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 34, 34, 0.45);
    z-index: 1;
}

.destination-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 28px 22px 22px 22px;
}

.destination-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.destination-content p {
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .destination-content {
        padding: 20px 10px 16px 10px;
    }
}

/* Benefits block */
.home-block-benefits {
    background: #f6fafd;
    padding: 48px 0 32px 0;
}

.benefits-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #328e82;
}

.benefits-desc {
    text-align: center;
    font-size: 1.08rem;
    margin-bottom: 18px;
}

.benefits-list {
    margin: 32px auto 0 auto;
    max-width: 700px;
    padding-left: 0;
    list-style: none;
}

.benefits-list li {
    margin-bottom: 14px;
    font-size: 1.08rem;
    text-align: left;
}

.btn-main {
    display: inline-block;
    margin: 18px auto 0 auto;
    background: #328e82;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-main:hover,
.btn-main:focus {
    background: #23635a;
    color: #fff;
}

/* CTA block */
.cta-block {
    background: #fff;
    padding: 48px 0 32px 0;
    text-align: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #328e82;
}

.cta-desc {
    font-size: 1.08rem;
    margin-bottom: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 700px) {
    .benefits-list {
        padding-left: 0;
    }

    .benefits-list li {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.1rem;
    }
}

/* Contact block */
.contact-block {
    background: #f6fafd;
    padding: 48px 0 32px 0;
}

.contact-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 320px;
    min-width: 260px;
    font-size: 1.08rem;
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #328e82;
}

.contact-info p {
    margin-bottom: 16px;
}

.contact-info a {
    color: #328e82;
    text-decoration: underline;
}

.contact-form {
    flex: 1 1 380px;
    min-width: 260px;
    background: #f6fafd;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(34, 34, 34, 0.07);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form h2 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}

.contact-form label {
    font-size: 1rem;
    margin-top: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1.5px solid #328e82;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 8px;
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-form .btn-main {
    width: 100%;
    margin: 18px 0 0 0;
}

@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 28px;
    }

    .contact-form,
    .contact-info {
        min-width: 0;
    }
}

/* Gallery block */
.gallery-block {
    background: #fff;
    padding: 32px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 2px 12px rgba(34, 34, 34, 0.08);
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Policy pages (privacy, terms) */
.policy-block {
    background: #f6fafd;
    padding: 48px 0 32px 0;
}

.policy-block .container {
    max-width: 800px;
}

.policy-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #328e82;
    text-align: center;
}

.policy-block p {
    font-size: 1.08rem;
    margin-bottom: 16px;
    color: #222;
    line-height: 1.7;
}

.policy-block ul {
    margin-bottom: 18px;
    padding-left: 22px;
}

.policy-block li {
    font-size: 1.08rem;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.6;
}

.policy-block a {
    color: #328e82;
    text-decoration: underline;
}